This you find around the ๐ŸŒ Internet
๐Ÿ” Web search with Google โ€ข Bing โ€ข DuckDuckGo โ€ข Marginalia โ€ข Reddit โ€ข Spotify โ€ข TikTok โ€ข Tootfinder โ€ข X โ€ข Yandex โ€ข Youtube โ€ข YTM
This you find in the ๐Ÿ›๏ธ Agora
๐Ÿ—ฃ๏ธ Stoas for [[@sparql/eu knowledge graph]]
A Stoa is a public space where people can meet and collaborate.
๐Ÿ“– Document at https://doc.anagora.org/eu knowledge graph
๐Ÿ“น Meeting at https://framatalk.org/eu knowledge graph
๐Ÿ“š Node [[eu knowledge graph]]
โ†ณ ๐Ÿ““ Resource [[@sparql/eu knowledge graph]]
๐Ÿ““ garden/sparql/pages/EU Knowledge Graph.md by @sparql

type:: [[SPARQL Endpoint]], [[RDF Store]] url:: https://query.linkedopendata.eu triples:: 274 736 517 date:: [[Feb 14th, 2022]]

  • [[Example]] queries
    • โ–ถ Try
      #Kohesio projects on a map
      #defaultView:Map
      SELECT ?KohesioProject ?location  {
        VALUES ?country {wd:Q23 wd:Q12} # Estonia, Denmark
        ?KohesioProject wdt:P35 wd:Q9934 ;
                        wdt:P32 ?country ; 
                        wdt:P127 ?location .
      }
      
      #Query #VALUES
    • โ–ถ Try
      SELECT ?countryLabel (xsd:integer(SUM(?EUcontribution)) as ?sum) {  
        VALUES ?country {wd:Q18 wd:Q14 wd:Q27 } # Portugal, Lithuania, Slovenia  
        ?KohesioProject wdt:P35  wd:Q9934 ;                  
                        wdt:P32  ?country ;                   
                        wdt:P835 ?EUcontribution .  
        SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en"}
      }
      GROUP BY ?countryLabel
      
      #Query #VALUES #SUM #[[GROUP BY]]
    • โ–ถ Try
      SELECT * 
      { ?s wdt:P841 ?beneficiario ;
           wdt:P474 ?presupuesto ;
           wdt:P835 ?contribucion_eu ;
           wdt:P837 ?porcentaje_financiacion ;
           wdt:P270288 ?lugar ;
           wdt:P460 ?codigo_postal ;
           wdt:P1845 wd:Q2550039 ;
           wdt:P836 ?resumen ;
           wdt:P416470 ?id_spanish ;
           wdt:P20 ?fecha_inicio ;
           wdt:P33 ?fecha_fin ;
           wdt:P127 ?coordenadas .
           FILTER ( LANG(?resumen) = 'es' ).
                     }
      ORDER BY DESC(?contribucion_eu)
      LIMIT 10
      
      #Query

Loading pushes...

Rendering context...